home *** CD-ROM | disk | FTP | other *** search
/ Zoom 2 / Zoom - Release 2 (1996)(Active Software)[!].iso / utilities / emulators / frodo / src / debug.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-06  |  187 b   |  17 lines

  1. #ifndef DEBUG_H
  2. #define DEBUG_H
  3.  
  4. #define DEBUG_DETAIL 1
  5.  
  6. extern void kprintf(UBYTE *fmt,...);
  7.  
  8. #define bug kprintf
  9.  
  10. #if DEBUG_DETAIL
  11. #define D(x) (x);
  12. #else
  13. #define D(x) ;
  14. #endif
  15.  
  16. #endif
  17.